home *** CD-ROM | disk | FTP | other *** search
- /* Definitions for serial interface */
-
- /* Public interface to the serial line drivers (which have a
- machine-dependent implementation but a common interface) */
-
- bool openserial NOARGS;
- bool closeserial NOARGS;
- bool sendserial ARGS((char *buf, int len)); /* Blocking write */
- int receiveserial ARGS((char *buf, int len)); /* Non-blocking read */
- bool breakserial NOARGS;
- bool speedserial ARGS((int baudrate));
-
- /* Pseudo event reported when input from serial line available */
-
- #define WE_SERIAL_AVAIL 42
-